Open
Conversation
There was a problem hiding this comment.
Pull request overview
This pull request updates Python documentation dependencies to their latest versions and removes unused Sphinx extensions from the configuration. The changes streamline the documentation build setup by eliminating unnecessary extensions while keeping the build environment current.
- Updated five Python packages to newer versions (docutils, Sphinx, sphinx-rtd-theme, and Jinja2)
- Removed three unused Sphinx extensions (autodoc, doctest, intersphinx) and their related configuration
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| requirements.txt | Updated dependency versions: docutils 0.20.1→0.21.2, Sphinx 7.2.6→8.2.3, sphinx-rtd-theme 2.0.0→3.0.2, Jinja2 3.1.5→3.1.6 |
| source/conf.py | Removed unused Sphinx extensions (autodoc, doctest, intersphinx) and associated intersphinx_mapping configuration |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+1
to
+5
| docutils==0.21.2 | ||
| Sphinx==8.2.3 | ||
| sphinx-rtd-theme==3.0.2 | ||
| readthedocs-sphinx-ext==2.2.5 | ||
| Jinja2==3.1.5 | ||
| Jinja2==3.1.6 |
Contributor
There was a problem hiding this comment.
had to go for
Suggested change
| docutils==0.21.2 | |
| Sphinx==8.2.3 | |
| sphinx-rtd-theme==3.0.2 | |
| readthedocs-sphinx-ext==2.2.5 | |
| Jinja2==3.1.5 | |
| Jinja2==3.1.6 | |
| docutils==0.20.1 | |
| Sphinx==7.1.2 | |
| sphinx-rtd-theme==3.0.2 | |
| readthedocs-sphinx-ext==2.2.5 | |
| Jinja2==3.1.6 |
on mac :( , but hey, at least I found a working combination again.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request simplifies the Sphinx documentation configuration by removing some unused extensions and their related settings. The focus is on streamlining the documentation build process.
Removed Sphinx extensions and related configuration:
sphinx.ext.autodoc,sphinx.ext.doctest, andsphinx.ext.intersphinxextensions from theextensionslist insource/conf.py.intersphinx_mappingconfiguration, since thesphinx.ext.intersphinxextension is no longer used.